@import url('reset.css');

/*
CONTENTS

01 - VARIABLES
02 - FONT IMPORT
03 - TYPE STYLES
04 - GRID
05 - HEADER
06 - FOOTER
07 - FORMS
08 - TABLES
09 - BUTTONS
10 - SEARCH PAGE
MISC
*/


/*
MEDIA QUERIES
Mobile: not defined
Tablet: min-width: 641px
Desktop: min-width: 769px
Large desktop: min-width: 1441px
*/


/*
01 - VARIABLES

NOTE: Using CSS variables will allow for quick changing of the theme,
a polyfill will be required for IE 10 and 11 as it is not supported.
*/

:root {
}


/*
02 - FONT IMPORT
*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,600,700');
body {
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'OLINT';
    src: url('../fonts/OLINT.eot');
    src: url('../fonts/OLINT.eot?#iefix') format('embedded-opentype'), url('../fonts/OLINT.woff') format('woff'), url('../fonts/OLINT.ttf') format('truetype'), url('../fonts/OLINT.svg#OLINT') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*
03 - TYPE STYLES
*/

html {
    font-size: 16px;
}

@media screen and (min-width:641px) {
    html {
        font-size: 18px;
    }
}

body {
    -webkit-font-feature-settings: "liga" 1;
    -moz-font-feature-settings: "liga" 1;
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga" 1;
    font-size: 100%;
    color: #2C333B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.24rem;
    margin: 0 0 0.75em;
}

h2 {
    font-size: 1.906rem;
    margin: 1em 0 0.75em;
}

h3 {
    font-size: 1.622rem;
    margin: 1em 0 0.75em;
}

h4 {
    font-size: 1.381rem;
    margin: 1em 0 0.75em;
}

h5 {
    font-size: 1.175rem;
    margin: 1em 0 0.75em;
}

h6 {
    font-size: 1rem;
    margin: 1em 0 0.75em;
}

@media screen and (min-width:641px) {
    h1 {
        font-size: 3rem;
        margin: 0 0 0.75em;
    }
    h2 {
        font-size: 2.4rem;
        margin: 1em 0 0.75em;
    }
    h3 {
        font-size: 2rem;
        margin: 1em 0 0.75em;
    }
    h4 {
        font-size: 1.6rem;
        margin: 1em 0 0.75em;
    }
    h5 {
        font-size: 1.25rem;
        margin: 1em 0 0.75em;
    }
    h6 {
        font-size: 1rem;
        margin: 1em 0 0.75em;
    }
}

h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

p,
li {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.75em;
    max-width: 80ch;
}

ul {
    max-width: 80ch;
}

.lede {
    font-size: 1.175rem;
}

@media screen and (min-width:641px) {
    .lede {
        font-size: 1.25rem;
    }
}

small {
    font-size: 0.8rem;
    margin: 0 0 0.75em;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

ul {
    list-style-type: disc;
    padding-left: 1rem;
    margin-left: 1rem;
}

ul ul {
    margin-top: 0.75em
}

a {
    color: #368093;
}

a:hover,
a:focus {
    color: #1D677A;
}

a:visited {
    color: #764897;
}

.breadcrumbs {
    width: 100%;
}

.breadcrumbs li {
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0 0.35rem 0 0;
    font-size: 0.8rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '〉';
    margin-left: 0.5rem;
    color: #2C333B;
    opacity: 0.5;
}

summary {
    font-weight: 700;
    cursor: pointer;
    outline: none;
    margin: 0 0 1rem;
}

.light {
    font-weight: 300;
}

.textCenter {
    text-align: center;
}

[class*='icon-']:before {
    display: inline-block;
    font-family: 'OLINT';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-results_quickviewhover:before {
    content: '\0041';
}

.icon-results_time:before {
    content: '\0042';
}

.icon-searchFocused:before {
    content: '\0043';
}

.icon-user:before {
    content: '\0044';
}

.icon-basket:before {
    content: '\0045';
}

.icon-results_alpha-ascend:before {
    content: '\0046';
}

.icon-results_alpha-descend:before {
    content: '\0047';
}

.icon-results_alpha-nosort:before {
    content: '\0048';
}

.icon-results_cost:before {
    content: '\0049';
}

.icon-results_cost-ascend:before {
    content: '\004a';
}

.icon-results_cost-descend:before {
    content: '\004b';
}

.icon-results_cost-nosort:before {
    content: '\004c';
}

.icon-results_date:before {
    content: '\004d';
}

.icon-results_date-ascend:before {
    content: '\004e';
}

.icon-results_date-descend:before {
    content: '\004f';
}

.icon-results_date-nosort:before {
    content: '\0050';
}

.icon-results_diploma:before {
    content: '\0051';
}

.icon-results_quickview:before {
    content: '\0052';
}

.icon-tick:before {
    content: '\0053';
}

.icon-pdfIcon:before {
    content: '\0054';
}


/*
04 - GRID
*/

body {
    background: White;
    border: 0.5rem solid #fff;
    border-top: none;
    min-height: 100vh;
}

@media screen and (min-width:641px) {
    body {
        border: 1rem solid #fff;
        border-top: none;
    }
}

@media screen and (min-width:768px) {
    body {
        border: 2rem solid #fff;
        border-top: none;
    }
}

@media screen and (min-width:1441px) {
    body {
        border: 4rem solid #fff;
        border-top: none;
    }
}

main {
    width: 100%;
    margin: 2rem 0 0 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /*padding: 2rem 0 0 1rem;*/
}

.row {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto 2rem;
}

@media screen and (min-width:641px) {
    .row {
        flex-direction: row;
    }
}

@media screen and (min-width:769px) {
    .row {
        padding: 0 1rem;
    }
}

@media screen and (min-width:1441px) {
    .row {
        padding: 0 1rem;
    }
}

.col {
    display: block;
    width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

@media screen and (min-width:641px) {
    .col {
        padding: 0 1rem;
    }
    .colQuarter {
        width: 49%;
    }
    .colThreeQuarters {
        width: 100%;
    }
    .colHalf {
        width: 49%;
    }
    .colThird {
        width: 100%;
    }
    .colTwoThirds {
        width: 100%;
    }
}

@media screen and (min-width:769px) {
    .col {
        padding: 0 2rem;
        margin-bottom: 0;
    }
    .colQuarter {
        width: 24%;
    }
    .colThreeQuarters {
        width: 74%;
    }
    .colThird {
        width: 32.3333333%;
    }
    .colTwoThirds {
        width: 65.6666666%;
    }
}

.colCentral {    
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/*
05 - HEADER
*/

header {
    width: 100%;
    padding: 1rem 0;
    background: #fff;
    margin-bottom: 0;
}

@media screen and (min-width:641px) {
    header {
        width: 100%;
        padding: 2rem 0;
        margin-bottom: 0;
    }
}

@media screen and (min-width:768px) {
    header {
        width: 100%;
        padding: 2rem 0;
        margin-bottom: 0;
    }
}

@media screen and (min-width:1441px) {
    header {
        width: 100%;
        padding: 3rem 0;
        margin-bottom: 0;
    }
}

header .row {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 0;
    flex-direction: row;
    position: relative;
}

header .row .col {
    padding: 0;
    margin: 0;
}

header .colThird {
    width: 33.3333333%;
}

header .colTwoThirds {
    width: 66.6666666%;
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
}

@media screen and (min-width:769px) {
    header .colTwoThirds {
        flex-wrap: nowrap;
    }
}

header nav {
    padding: 0 0.5rem;
    display: none;
    order: 1;
    width: 100%;
}

header nav.open {
    padding: 2rem 1rem 1rem;
    display: block;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
}

@media screen and (min-width:769px) {
    header nav {
        display: block;
        flex-wrap: nowrap;
        order: 0;
        padding: 0;
        width: auto;
    }
}

nav a:not(.button) {
    color: #2C333B !important;
    text-decoration: none;
}

#menuButton {
    display: block;
    background: transparent;
    color: #2C333B;
    width: 3.5rem;
    height: 3.5rem;
    outline: none;
    position: relative;
    margin: 0;
    padding-top: 0.35rem;
}

#menuButton::after {
    content: '☰';
    font-size: 2rem;
}

#menuButton.open::after {
    content: '✕';
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

nav li a {
    width: 100%;
    display: block;
    text-align: center;
    /*margin-top: 10px;*/
}

nav li {
    margin: 0 0 1rem;
    text-align: center;
}

nav .button,
nav button {
    margin: 0;
}

@media screen and (min-width:769px) {
    #menuButton {
        display: none;
    }
    nav,
    nav.open {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        height: 100%;
        position: unset;
    }
    nav li {
        margin: 0 0 0 2rem;
        display: inline-block;
        width: auto;
    }
    nav li a {
        width: auto;
        display: block;
    }
}

header .logo {
    margin-left: 0;
    max-width: 120px;
    display: inherit;
}

.basket {
    font-size: 1.175rem;
    font-weight: 700;
    color: #2C333B !important;
    text-decoration: none;
    margin: 0 0 0 1rem;
}

@media screen and (min-width:641px) {
    .basket {
        font-size: 1.25rem;
    }
}

@media screen and (min-width:769px) {
    .basket {
        margin: 0 0 0 2rem;
    }
}

.basket::after {
    font-family: 'OLINT';
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    content: '\0045';
    margin-left: 0.25rem;
    margin-bottom: 0.35rem;
}

.user::after {
    font-family: 'OLINT';
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    content: '\0044';
    margin-left: 0.25rem;
    margin-bottom: 0.35rem;
}


/*
06 - FOOTER
*/


/*
07 - FORMS
*/

input {
    margin: 0;
}

.formLabel {
    display: block;
    margin-bottom: 0.5rem;
    max-width: 37rem;
    line-height: 1.4;
}

.hint {
    color: #6E747C;
    display: block;
}

.hint+.hint {
    margin-top: 0.5rem;
}

.formControl {
    display: block;
    width: 100%;
    max-width: 37rem;
    padding: 0.5rem 1rem;
    -webkit-appearance: none;
    border-radius: 0;
    border: 1px solid #2C333B;
    font-family: inherit;
    font-size: inherit;
    margin-bottom: 0.5rem;
}

select.formControl {
    background-image: url('../images/dropdown.png');
    background-position: center right;
    background-repeat: no-repeat;
    -moz-appearance: none;
}

.formControl:focus {
    outline: 3px solid #f1614e;
}

.formGroup {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
}

fieldset {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 0.5rem;
}

legend {
    margin-bottom: 1rem;
    line-height: 1.4;
    max-width: 75ch;
}

.block-label {
    display: block;
    float: none;
    clear: left;
    position: relative;
    padding: 0 0.75rem 0.5rem 2.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
}

@media screen and (min-width: 641px) {
    .block-label {
        float: left;
        padding-top: 0;
        padding-bottom: 0.5rem;
    }
}

.block-label.checkbox:before {
    content: "";
    border: 2px solid #764897;
    background: transparent;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease;
}

.block-label.checkbox.selected:before {
    border-color: #764897;
    background: #764897;
}

.block-label.checkbox:after {
    content: "";
    border: solid #fff;
    border-width: 0 0 3px 3px;
    background: transparent;
    width: 12px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: 6px;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
    transition: all 0.2s ease;
}

.block-label.checkbox.selected:after {
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.block-label.radio:before {
    content: "";
    border: 2px solid #764897;
    background: transparent;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.block-label.radio.selected:before {
    border: 2px solid #764897;
    background: #764897;
}

.block-label.radio:after {
    content: "";
    border: 6px solid #fff;
    width: 0;
    height: 0;
    position: absolute;
    top: 6px;
    left: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
    transition: all 0.2s ease;
}

.block-label.radio.selected:after {
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.block-label.radio.focus:before,
.block-label.checkbox.focus:before {
    -webkit-box-shadow: 0 0 0 3px #f1614e;
    -moz-box-shadow: 0 0 0 3px #f1614e;
    box-shadow: 0 0 0 3px #f1614e;
}

.block-label input {
    margin: 0;
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
}

.inline .block-label {
    clear: none;
}

@media screen and (min-width: 641px) {
    .inline .block-label {
        margin-bottom: 0;
        margin-right: 2rem;
    }
}

fieldset .block-label:last-child {
    margin-bottom: 0;
}


/*
08 - TABLES
*/

table {
    width: 100%;
    border-bottom: 1px solid #2C333B;
    text-align: left;
    margin-bottom: 1rem;
}

td {
    padding: 0.5rem;
    display: block;
    line-height: 1.4;
    font-size: inherit;
}

th {
    font-size: inherit;
    display: none;
    font-weight: 700;
}

tr {
    border-top: 1px solid #2C333B;
}

@media screen and (min-width: 641px) {
    td {
        padding: 1rem;
        display: table-cell;
        vertical-align: middle;
    }
    th {
        display: table-cell;
        padding: 1rem;
    }
}

td .formControl {
    font-size: 0.8rem;
    padding: 0.5rem;
    height: 2.5rem;
}


/*
Basket table
*/

#applicationGridData td {
    vertical-align: middle;
}

#applicationGridData td:nth-child(1) {
    font-weight: 700;
    padding: 1rem 0.5rem 0.5rem;
    
}

@media screen and (min-width: 641px) {
    #applicationGridData td:nth-child(1) {
        padding: 1rem 0.5rem 0.5rem;
    }
    #QualificationGrid td:nth-child(1),
    #EducationGrid td:nth-child(1)
    {
        text-align: left !important;
    }
}

#applicationGridData td:nth-child(1) span {
    color: #6E747C;
    font-size: 0.8rem;
    display: block;
    font-weight: 400;
    margin-top: 0.5rem;
}
#applicationGridData td:nth-child(1) div {
    color: #6E747C;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

#applicationGridData th:nth-child(1), 
#applicationGridData th:nth-child(2),
#applicationGridData th:nth-child(3)
{
    text-align: left;
}
#applicationGridData th:nth-child(4),
#applicationGridData th:nth-child(5)
{
    text-align: right;
}

@media screen and (min-width: 641px) {
    #applicationGridData td:nth-child(4) {
        text-align: right;
    }
}

#applicationGridData td:nth-child(5) {
    text-align: right;
    padding: 0.5rem 0.5rem 1rem;
}

#applicationGridData td:nth-child(5) a {
    color: #B81F1A;
}

@media screen and (min-width: 641px) {
    #applicationGridData td:nth-child(5) {
        padding: 1rem;
    }
}

#enrolmentGridData td {
    vertical-align: middle;
}

#enrolmentGridData td:nth-child(1) {
    font-weight: 700;
    padding: 1rem 0.5rem 0.5rem;
    
}

@media screen and (min-width: 641px) {
    #enrolmentGridData td:nth-child(1) {
        padding: 1rem;
    }
}

#enrolmentGridData th:nth-child(1), 
#enrolmentGridData th:nth-child(2),
#enrolmentGridData th:nth-child(3)
{
    text-align: left;
}
#enrolmentGridData th:nth-child(4),
#enrolmentGridData th:nth-child(5)
{
    text-align: right;
}

#enrolmentGridData td:nth-child(1) span {
    color: #6E747C;
    font-size: 0.8rem;
    display: block;
    font-weight: 400;
    margin-top: 0.5rem;
}
#enrolmentGridData td:nth-child(1) div {
    color: #6E747C;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

@media screen and (min-width: 641px) {
    #enrolmentGridData td:nth-child(4) {
        text-align: right;
    }
}

#enrolmentGridData td:nth-child(5) {
    text-align: right;
    padding: 0.5rem 0.5rem 1rem;
}

#enrolmentGridData td:nth-child(5) a {
    color: #B81F1A;
}

@media screen and (min-width: 641px) {
    #enrolmentGridData td:nth-child(5) {
        padding: 1rem;
    }
}


/*
09 - BUTTONS
*/

button,
.button {
    padding: 0.75rem 1rem;
    border: none;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    line-height: 1.4;
    box-sizing: border-box;
    margin: 0 0 1rem;
}

@media screen and (min-width:641px) {
    button,
    .button {
        width: auto;
        margin: 0 1rem 1rem 0;
    }
}

.button:focus,
button:focus {
    outline: 3px solid #f1614e;
}

button.primary,
.button.primary {
    background: #764897;
    color: #fff;
}

button.primary:hover,
.button.primary:hover,
button.primary:focus,
.button.primary:focus {
    background: #5D2F7E;
    color: #fff;
}

button.primary:active,
.button.primary:active {
    background: #431564;
    color: #fff;
}

button.secondary,
.button.secondary {
    padding: calc(0.75rem - 2px) calc(1rem - 2px);
    background: transparent;
    color: #764897;
    border: 2px solid #764897;
}

button.secondary:hover,
.button.secondary:hover,
button.secondary:focus,
.button.secondary:focus {
    background: transparent;
    color: #5D2F7E;
    border: 2px solid #5D2F7E;
}

button.secondary:active,
.button.secondary:active {
    background: transparent;
    color: #431564;
    border: 2px solid #431564;
}

button.disabled,
.button.disabled,
button:disabled {
    opacity: 0.5;
    pointer-events: none;
}


/*
10 - SEARCH PAGE
*/


/*
SEARCH TABLE
*/

#grdCourse,
#grdCourse tbody,
#grdCourse thead {
    display: block;
    width: 100%;
    border: none;
}

@media screen and (min-width:1441px) {
    #grdCourse tbody {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

#grdCourse thead {
    margin-bottom: 2rem;
}

#grdCourse tbody tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    background: white;
    padding: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    border: none;
}

@media screen and (min-width:1441px) {
    #grdCourse tbody tr {
        width: calc(50% - 1rem);
    }
}
#grdCourse tbody tr td {
    display: inline-block;
    padding: 0 !important;
}


/*Course title*/

#grdCourse tbody tr td:nth-child(1) {
    display: block;
    width: 90%;
    font-weight: 700;
    font-size: 1.906rem;
    margin: 0;
    line-height: 1.2;
    padding-right: 2.5rem;
}

@media screen and (min-width:641px) {
    #grdCourse tbody tr td:nth-child(1) {
        font-size: 2rem;
    }
}


/*Course code*/

#grdCourse tbody tr td:nth-child(2) {
    display: block;
    margin: 0.5rem 0 0;
    width: 100%;
    color: #6E747C;
}


/*Course type*/

#grdCourse tbody tr td:nth-child(3),
#grdCourse tbody tr td:nth-child(4),
#grdCourse tbody tr td:nth-child(5),
#grdCourse tbody tr td:nth-child(6) {
    display: block;
    margin: 1rem 0;
    /*width: 50%;*/
}

@media  and (min-width:769px) {
    #grdCourse tbody tr td:nth-child(3),
    #grdCourse tbody tr td:nth-child(4),
    #grdCourse tbody tr td:nth-child(5),
    #grdCourse tbody tr td:nth-child(6) {
        margin: 2rem 0;
        width: 25%;
    }
}

#grdCourse tbody tr td:nth-child(3)::before,
#grdCourse tbody tr td:nth-child(4)::before,
#grdCourse tbody tr td:nth-child(5)::before,
#grdCourse tbody tr td:nth-child(6)::before {
    font-family: 'OLINT';
    content: '';
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-size: 2rem;
    color: #368093;
}

.CourseType::before {
    content: '\0051';
}
.CourseType
{
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}
#grdCourse tbody tr td:nth-child(3)::before {
    content: '\0051';
}

#grdCourse tbody tr td:nth-child(4)::before {
    content: '\004d';
}

#grdCourse tbody tr td:nth-child(5)::before {
    content: '\0042';
}

#grdCourse tbody tr td:nth-child(6)::before {
    content: '\0049';
}

#grdCourse tbody tr td:nth-child(7) .quickView {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    height: 1.5rem !important;
    width: 1.5rem !important;
    overflow: hidden;
}

#grdCourse tbody tr td:nth-child(7) .quickView::before {
    font-family: 'OLINT';
    content: '\0052';
    font-size: 1.5rem;
    color: #368093;
}

#grdCourse tbody tr td:nth-child(7) .quickView:hover::before {
    content: '\0041';
    color: #1D677A;
}

#grdCourse tbody tr td:nth-child(8) {
    display: block;
    width: 100%;
}

#grdCourse thead tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    border: none;
}

#grdCourse thead tr::before {
    content: 'Sort courses by:';
    width: 100%;
    margin: 0 0 1rem;
    font-size: 1.175rem;
}

@media screen and (min-width:641px) {
    #grdCourse thead tr::before {
        font-size: 1.25rem;
    }
}

#grdCourse thead tr th {
    display: inline-block;
    margin-right: 2rem;
}

#grdCourse thead tr th:nth-child(2),
#grdCourse thead tr th:nth-child(3),
#grdCourse thead tr th:nth-child(5),
#grdCourse thead tr th:nth-child(7),
#grdCourse thead tr th:nth-child(8) {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

#grdCourse thead tr th:nth-child(1),
#grdCourse thead tr th:nth-child(4),
#grdCourse thead tr th:nth-child(6) {
    height: 3rem !important;
    width: 3rem !important;
    padding: 0 !important;
    font-weight: normal;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}

#grdCourse thead tr th:nth-child(1)::before,
#grdCourse thead tr th:nth-child(4)::before,
#grdCourse thead tr th:nth-child(6)::before {
    font-family: 'OLINT';
    content: '';
    display: inline-block;
    margin-right: 1rem;
    vertical-align: middle;
    font-size: 3rem;
    color: #368093;
}

#grdCourse thead tr th:nth-child(1).sorting::before {
    content: '\0048';
}

#grdCourse thead tr th:nth-child(1).sorting_asc::before {
    content: '\0046';
}

#grdCourse thead tr th:nth-child(1).sorting_desc::before {
    content: '\0047';
}

#grdCourse thead tr th:nth-child(4).sorting::before {
    content: '\0050';
}

#grdCourse thead tr th:nth-child(4).sorting_asc::before {
    content: '\004e';
}

#grdCourse thead tr th:nth-child(4).sorting_desc::before {
    content: '\004f';
}

#grdCourse thead tr th:nth-child(6).sorting::before {
    content: '\004c';
}

#grdCourse thead tr th:nth-child(6).sorting_asc::before {
    content: '\004a';
}

#grdCourse thead tr th:nth-child(6).sorting_desc::before {
    content: '\004b';
}

@media screen and (max-width: 1500px)
{
    #grdCourse tbody tr td:nth-child(1)
    {
        width: 80%!important;
    }
}
/*pagination*/

.paginate_button {
    margin: 0 0.25rem 0 0;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem;
}

.paginate_button.disabled {
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

.paginate_button.current {
    text-decoration: none;
    pointer-events: none;
    color: #2C333B;
    font-weight: 600;
}


/* SEARCH BOX */

.keywordSearch {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

@media screen and (min-width:1441px) {
    .keywordSearch {
        width: 50%;
    }
}

.ctaInput {
    -webkit-appearance :none;
    -moz-appearance:none;
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    height: 2.5rem;
    outline: none;
    border-bottom: 1px solid #2C333B;
}

@media screen and (min-width:641px) {
    .ctaInput {
        font-size: 1.25rem;
        height: 4rem;
    }
}

@media screen and (min-width:769px) {
    .ctaInput {
        font-size: 2rem;
    }
}

.ctaButton {
    padding: 0.5rem;
    background: transparent;
    border-bottom: 1px solid #2C333B;
    border-radius: 0;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
}

.ctaButton img {
    margin: 0 auto;
}

@media screen and (min-width:641px) {
    .ctaButton {
        width: 4rem;
        height: 4rem;
    }
}


/* FILTER PANEL */

#filterToggle {
    padding: 0.75rem 1rem;
    width: 50%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    background: transparent;
    color: #764897;
    border: 2px solid #764897;
    margin-bottom: 2rem;
}

@media screen and (min-width:769px) {
    #filterToggle {
        pointer-events: none;
        padding: 0;
        width: auto;
        display: block;
        text-align: left;
        cursor: auto;
        color: #2C333B;
        border: none;
        font-size: 2rem;
        margin: 0 auto 0.75em;
    }
}

.filterPanel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: White;
    z-index: 9999;
    padding: 2rem;
    overflow:auto;
}

.filterPanel::before {
    content: 'Filters';
    font-size: 1.906rem;
    margin: 0 0 0.75em;
    font-weight: 700;
    display: block;
}

@media screen and (min-width:769px) {
    .filterPanel {
        display: block !important;
        position: relative;
        background: transparent;
        z-index: 0;
        padding: 3px;
    }
    .filterPanel::before {
        display: none;
        content: '';
    }
    #viewResults {
        display: none;
    }
    .filterPanel .closeButton {
        display: none;
    }
}


/*
10 - MODAL
*/

.modalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
    padding: 0 1rem;
}

.modalOverlay.open {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    display: block;
    width: 100%;
    max-width: 37rem;
    background: White;
    padding: 2rem 2rem 1rem;
    max-height: calc(100vh - 4rem);
    overflow-y: scroll;
    position: relative;
}

.closeButton {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.closeButtonSection {
    position: absolute;
    top: 75px;
    right: 0;
    background: transparent;
    width: 3rem;
    height: 3rem;
    padding: 0.25rem;
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
 
}
/*
11 - COURSE INFO
*/

.heroImage {
    width: 100%;
    min-height: 35vh;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -2rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background-position: center center;
}

@media screen and (min-width:769px) {
    .heroImage {
        min-height: 45vh;
    }
}

.courseIntro {
    background: #ECECEC;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.applyNowPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 8888;
}

.applyNowPanel h3 {
    display: none;
}

.applyNowPanel .cost {
    width: 100%;
    padding: 1rem 0 1rem;
    margin: 0 auto;
    text-align: center;
}

.applyNowPanel button {
    width: 50%;
}

@media screen and (min-width:769px) {
    .applyNowPanel {
        position: relative;
        /*position: -webkit-sticky;*/
        top: 2rem;
        background: #ECECEC;
        padding: 2rem 2rem 1rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .applyNowPanel h3 {
        display: block;
        width: 100%;
    }
    .applyNowPanel .cost {
        width: 100%;
        padding: 0;
        margin: 0 0 0.75rem;
        text-align: left;
    }
    .applyNowPanel button {
        width: auto;
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
}


/*
12 - BASKET
*/

@media screen and (min-width:769px) {
    .basketSummaryPanel {
        position: sticky;
        position: -webkit-sticky;
        top: 2rem;
        background: #ECECEC;
        padding: 2rem 2rem 2rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}


/*
13 - APPLICATION INFO
*/

#sectionToggle {
    padding: 0.75rem 1rem;
    width: 50%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    background: transparent;
    color: #764897;
    border: 2px solid #764897;
    margin-bottom: 2rem;
}

@media screen and (min-width:769px) {
    #sectionToggle {
        pointer-events: none;
        padding: 0;
        width: auto;
        display: block;
        text-align: left;
        cursor: auto;
        color: #2C333B;
        border: none;
        font-size: 2.4rem;
        margin: 0 auto 0.75em;
    }
}

.sectionPanel {
    display: none;    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: White;
    z-index: 9999;
    padding: 2rem;
    overflow-y: scroll;
}

.sectionPanel::before {
    content: 'Sections';
    font-size: 1.906rem;
    margin: 0 0 0.75em;
    font-weight: 700;
    display: block;
}

@media screen and (min-width:769px) {
    .sectionPanel {
        display: block !important;
        position: unset;
        background: transparent;
        z-index: 0;
        padding: 0;
        overflow: auto;
    }
    .sectionPanel::before {
        display: none;
        content: '';
    }
    .sectionPanel .closeButton {
        display: none;
    }
    .sectionPanel .closeButtonSection {
        display: none;
    }
}

.sectionsList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sectionsList li {
    width: 100%;
}

.sectionsList .active a {
    font-weight: 700;
    color: #2C333B;
    pointer-events: none;
    text-decoration: none;
}

.sectionsList a {
    position: relative;
    width: 100%;
    display: block;
}

.sectionsList .completed a:after {
    content: '\0053';
    font-family: 'OLINT';
    font-size: 1rem;
    color: #00B672;
    text-decoration: none !important;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: bottom;
}

.orderFirstSmall {
    order: 1;
}

.orderLastSmall {
    order: 2;
}

@media screen and (min-width:769px) {
    .orderFirstSmall,
    .orderLastSmall {
        order: 0;
    }
}

.additionalAddress {
    display: none;
}

.other {
    display: none;
}

#QualificationGrid th,
#EducationGrid th,
#employment th,
#CourseGrid th,
.dashboard th,
#courseInfoQuote th {
    padding: 0.5rem;
}

.dashboard th {
    text-align: left;
}

#QualificationGrid td,
#EducationGrid td,
#employment td,
#CourseGrid td,
.dashboard td,
#courseInfoQuote td,
#courseInfoQuote th {
    font-size: 0.8rem;
    padding: 0.5rem;
}

#CourseGrid td:nth-child(1) span,
.dashboard td:nth-child(2) span,
#courseInfoQuote td:nth-child(1) span {
    color: #6E747C;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
}

.breakword
{
    word-break: break-all;
}
@media screen and (min-width:641px) {
    #employment th,
    #QualificationGrid th,
    #QualificationGrid td,
    #EducationGrid th,
    #EducationGrid td,
    #employment td,
    #CourseGrid th,
    #CourseGrid td,
    .dashboard th,
    .dashboard td,
    #applicationGridData th,
    #applicationGridData td,
    #enrolmentGridData th,
    #enrolmentGridData td 
    {
        padding: 1rem 0.5rem;
        text-align: left;
    }
    #CourseGrid td:nth-child(3),
    #CourseGrid th:nth-child(3),
    #CourseGrid td:nth-child(4),
    #CourseGrid th:nth-child(4),
    #EducationGrid td:nth-child(5),
    #EducationGrid th:nth-child(5),
    #QualificationGrid td:nth-child(4),
    #QualificationGrid th:nth-child(4)
    {
        text-align: right !important;
    }
    #employment th:last-child,
    #QualificationGrid th:last-child,
    #QualificationGrid td:last-child,
    #EducationGrid th:last-child,
    #EducationGrid td:last-child,
    #employment td:last-child,
    #CourseGrid th:last-child,
    #CourseGrid td:last-child,
    #courseInfoQuote td:last-child {
        text-align: right;
    }
}
@media screen and (min-width:641px) and (max-width: 992px) {
    #QualificationGrid th,
    #QualificationGrid td,
    #CourseGrid th,
    #CourseGrid td,
    #EducationGrid th,
    #EducationGrid td,
    .dashboard th,
    .dashboard td
    {
        padding: 1rem 0.8rem;
    }
}
@media screen and (min-width:993px) {
    #employment th,
    #QualificationGrid th,
    #QualificationGrid td
    {
        padding: 1rem 1.5rem;
    }
}
#QualificationGrid td:before,
#EducationGrid td:before,
#employment td:before,
#CourseGrid td:before,
.dashboard td:before,
#enrolmentGridData td:before,
#applicationGridData td:before,
#courseInfoQuote td:before {
    content: attr(data-header);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

@media screen and (min-width:641px) {
    #QualificationGrid td:before,
    #EducationGrid td:before,
    #employment td:before,
    #CourseGrid td:before,
    #enrolmentGridData td:before,
    #applicationGridData td:before,
    .dashboard td:before,
    #courseInfoQuote td:before {
        content: '';
        display: none;
    }
    #CourseGrid td:nth-child(5),
    #CourseGrid th:nth-child(5),
    #CourseGrid td:nth-child(6),
    #CourseGrid th:nth-child(6),
    #EducationGrid td:nth-child(5),
    #EducationGrid th:nth-child(5),
    #QualificationGrid td:nth-child(4),
    #QualificationGrid th:nth-child(4)
    {
        text-align: right !important;
    }
}

.remove {
    text-decoration: underline;
    color: #B81F1A !important;
}

.disabilityMatrix,
.residentCountrySelect,
.firstLanguageSelect {
    display: none;
}

table.answers td:first-child {
    font-weight: 700;
}

@media screen and (min-width:641px) {
    table.answers td {
        vertical-align: top;
        font-size: 0.8rem;
    }
    table.answers td:first-child,
    table.answers th:first-child {
        width: 300px;
        text-align: left;
    }
    table.answers th:last-child {
        text-align: left;
    }
}


/*
SUCCESS PAGE
*/

.success {
    color: #00B672;
}

.success::before {
    content: '\0053';
    font-family: 'OLINT';
    font-size: 3.5rem;
    color: #00B672;
    display: block;
    margin-bottom: 0.5rem;
}


/*
MISC
*/

.srOnly {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.largeMargin {
    margin-bottom: 2rem;
}

@media screen and (min-width:769px) {
    .largeMargin {
        margin-bottom: 4rem;
    }
}


/*
LANDING PAGE
*/

.homeHero {
    background-image: url('../images/HomeHero.jpg?auto=format&fit=crop&w=2710&q=80');
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 0 4rem;
    padding: 0 0 2rem;
}

@media screen and (min-width:769px) {
    .homeHero {
        padding: 0 0 4rem;
    }
}

.homeHero h1 {
    color: #fff;
    text-align: center;
    margin: 0 auto 0.75em;
    max-width: 30ch;
    text-shadow: 0 1px 3px #2C333B;
}

.searchBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.searchBox .keywordSearch {
    background: #368093;
    padding: 0.5rem;
}

.searchBox input {
    background: #ECECEC;
    border: none;
    padding-left: 1rem;
}

.searchBox button {
    background-color: #ECECEC;
    border: none;
}


/*
DASHBOARD
*/

.dashboard td .button,
.dashboard td button {
    display: block;
    margin: 0 0 1rem;
    width: 100%;
}

@media screen and (min-width:641px) {
    .dashboard td .button,
    .dashboard td button {
        margin: 0;
    }
}

.dashboard .button+.button {
    margin-top: 0.5rem !important;
}


/*
BOOKING INTERVIEW
*/

#dateSelector {
    width: 100%;
    display: block;
    max-width: 37rem;
}

.rd-container {
    display: block !important;
}

.rd-month {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.rd-back,
.rd-next {
    margin: 0 0 0.5rem;
    width: 2rem;
    height: 2rem;
    display: block;
    background: transparent;
    color: #764897;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.rd-back {
    order: 0;
    background-image: url('../images/date-picker_back.svg');
}

.rd-next {
    order: 2;
    background-image: url('../images/date-picker_forward.svg');
}

.rd-month-label {
    order: 1;
    font-weight: 700;
    margin: 0 0 0.25rem;
    font-size: 1.175rem;
}

@media screen and (min-width:641px) {
    .rd-month-label {
        font-size: 1.25rem;
    }
}

.rd-days {
    order: 3;
}

.rd-days td,
.rd-days th {
    display: table-cell;
    width: calc(100% / 7);
    letter-spacing: 0.1em;
    text-align: center;
}

.rd-day-prev-month,
.rd-day-next-month,
.rd-day-disabled {
    color: #6E747C;
    opacity: 0.5;
}

.rd-day-disabled {
    pointer-events: none;
}

.rd-day-body {
    cursor: pointer;
    padding: 1rem 0.5rem;
    transition: all 0.2s ease;
}

@media screen and (min-width:641px) {
    .rd-day-body {
        padding: 1.75rem 0.5rem;
    }
}

.rd-day-head {
    padding: 1rem 0.5rem;
}

@media screen and (min-width:641px) {
    .rd-day-head {
        padding: 1.75rem 0.5rem;
    }
}

.rd-day-selected {
    background: #764897;
    color: #fff;
}


/*
TIMEPICKER
*/

.timePicker {
    max-width: 38rem;
}

.timeSelector {
    width: auto;
    display: inline-block;
    position: relative;
    padding: 0.75rem 2rem 0.5rem 2rem;
    margin: 0 0.5rem 0.75rem 0;
    cursor: pointer;
    line-height: 1.4;
    min-width: 8.75rem;
    text-align: center;
    color: #764897;
    background: transparent;
    border: 2px solid #764897;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.timeSelector:hover,
.timeSelector:focus {
    color: #5D2F7E;
    border: 2px solid #5D2F7E;
}

.timeSelector.selected {
    color: #fff;
    background: #764897;
    border-color: #764897;
}

.timeSelector input {
    margin: 0;
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
}


/*
DOCUMENT UPLOAD
*/


/* DROPIFY STYLES */

@font-face {
    font-family: 'dropify';
    src: url("../fonts/dropify.eot");
    src: url("../fonts/dropify.eot#iefix") format("embedded-opentype"), url("../fonts/dropify.woff") format("woff"), url("../fonts/dropify.ttf") format("truetype"), url("../fonts/dropify.svg#dropify") format("svg");
    font-weight: normal;
    font-style: normal;
}

.dropify-font:before,
.dropify-wrapper .dropify-message span.file-icon:before,
[class*=" dropify-font-"]:before,
[class^=dropify-font-]:before {
    font-family: dropify;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-left: .2em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em
}

.dropify-wrapper.has-error .dropify-message .dropify-error,
.dropify-wrapper.has-preview .dropify-clear {
    display: block
}

.dropify-font-upload:before,
.dropify-wrapper .dropify-message span.file-icon:before {
    content: '\e800'
}

.dropify-font-file:before {
    content: '\e801'
}

.dropify-wrapper {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    max-width: 37rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #2C333B;
    background-color: #fff;
    background-image: none;
    text-align: center;
    border: 2px solid #2C333B;
    -webkit-transition: border-color .2s ease;
    transition: border-color .2s ease;
    height: auto!important
}

.dropify-wrapper:hover {
    background-image: none;
    -webkit-animation: none;
    animation: none
}

.dropify-wrapper.has-error {
    border-color: #B81F1A;
}

.dropify-wrapper.has-error .dropify-errors-container {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.dropify-wrapper.disabled input {
    cursor: not-allowed
}

.dropify-wrapper.disabled:hover {
    background-image: none;
    -webkit-animation: none;
    animation: none
}

.dropify-wrapper.disabled .dropify-message {
    opacity: .5;
    text-decoration: line-through
}

.dropify-wrapper.disabled .dropify-infos-message {
    display: none
}

.dropify-wrapper input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5
}

.dropify-wrapper .dropify-message {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding: 2rem 0 2.5rem;
}

.dropify-wrapper .dropify-message span.file-icon {
    font-size: 3rem;
    color: #368093;
}

.dropify-wrapper .dropify-message p {
    margin: 0.25rem 0 0
}

.dropify-wrapper .dropify-message p.dropify-error {
    color: #B81F1A;
    display: none
}

.dropify-wrapper .dropify-clear {
    display: none;
    position: absolute;
    z-index: 7;
    right: 1rem;
    background: 0 0;
    border: 2px solid #764897;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    font-weight: 400;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    top: 1rem;
    opacity: 1;
    width: auto;
    color: #764897
}

@media screen and (min-width:641px) {
    .dropify-wrapper .dropify-clear {
        right: 0;
    }
}

.dropify-wrapper .dropify-clear:hover {
    border-color: #5D2F7E;
    color: #5D2F7E;
}

.dropify-wrapper .dropify-preview {
    display: none;
    z-index: 1;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    position: relative;
    padding: 0
}

.dropify-wrapper .dropify-preview .dropify-render img {
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    background-color: #FFF;
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
    position: relative;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.dropify-wrapper .dropify-preview .dropify-render i {
    font-size: 4rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    color: #368093;
}

.dropify-wrapper .dropify-preview .dropify-render .dropify-extension {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -.03em;
    font-size: 0.8rem;
    width: 3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #368093;
}

.dropify-wrapper .dropify-preview .dropify-infos {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    position: relative;
    opacity: 1;
    background: 0 0
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before,
.dropify-wrapper.has-preview .dropify-message {
    display: none
}

.dropify-wrapper:hover .dropify-clear,
.dropify-wrapper:hover .dropify-preview .dropify-infos {
    opacity: 1
}


/*touch*/

.dropify-wrapper .dropify-preview .dropify-render {
    display: block;
    position: relative
}

.dropify-wrapper .dropify-preview .dropify-render .dropify-font-file {
    position: relative;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 0;
    left: 0
}

.dropify-wrapper .dropify-preview .dropify-render .dropify-font-file::before {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner {
    position: relative;
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding: 0.25rem 6rem 0.25rem 0
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p {
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2C333B;
    text-align: left;
    line-height: 1.4;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename {
    font-weight: 700
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
    margin-top: 0;
    padding-top: 0;
    font-size: 0.8rem;
    position: relative;
    opacity: 1;
    font-weight: 400;
}

.dropify-wrapper:hover .dropify-preview .dropify-infos .dropify-infos-inner {
    margin-top: 0
}

.dropify-wrapper .dropify-loader {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: none;
    z-index: 9
}

.dropify-wrapper .dropify-loader::after {
    display: block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: rotate .6s ease infinite;
    animation: rotate .6s ease infinite;
    border-radius: 100%;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #2C333B;
    border-left: 1px solid #CCC;
    border-right: 1px solid #2C333B;
    content: ''
}

.dropify-wrapper .dropify-errors-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    border: 4px solid #B81F1A;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s ease 0.2s, opacity 0.2s ease;
    transition: visibility 0s ease 0.2s, opacity 0.2s ease
}

.dropify-wrapper .dropify-errors-container ul {
    padding: 1rem;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    list-style-type: none;
    background: #fff;
}

.dropify-wrapper .dropify-errors-container ul li {
    margin-left: 1rem;
    color: #B81F1A;
}

.dropify-wrapper .dropify-errors-container.visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.dropify-wrapper~.dropify-errors-container ul {
    padding: 0;
    margin: 1rem 0;
}

.dropify-wrapper~.dropify-errors-container ul li {
    margin-left: 1rem;
    color: #B81F1A;
}

@-webkit-keyframes stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 30px;
    }
}

@keyframes stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 30px;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
    100% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
    100% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}


/*
FUNDING
*/

.filePDF::before {
    content: '\0054';
    font-family: 'OLINT';
    font-size: 2rem;
    display: inline-block;
    margin-right: 0.5rem;
    text-decoration: none;
    vertical-align: bottom;
}

/*@media screen and (min-width:770px) and (max-width:1100px) {
 #applicationGridData tbody tr {
        width: calc(50% - 1rem);
    }
 #enrolmentGridData tbody tr {
        width: calc(50% - 1rem);
    }
 }*/

.subHeader {
    background-color:white;
    padding-bottom:1rem;
}
.subHeader p{
    max-width: 100%;
}
.subFooter{
    background-color:white;
    /*padding-top:2rem;*/
    padding: 2rem 0 2rem;
    bottom: 0;
  
}
.subFooter p{
    margin: 0 !important;
    max-width: 100%;
}

/* IE11 hide native button */
select::-ms-expand {
    display: none;
}